crypto/tls.Config.autoSessionTicketKeys (field)
12 uses
crypto/tls (current package)
common.go#L913: autoSessionTicketKeys []ticketKey
common.go#L1036: autoSessionTicketKeys: c.autoSessionTicketKeys,
common.go#L1111: if len(c.autoSessionTicketKeys) > 0 && c.time().Sub(c.autoSessionTicketKeys[0].created) < ticketKeyRotation {
common.go#L1112: return c.autoSessionTicketKeys
common.go#L1121: if len(c.autoSessionTicketKeys) == 0 || c.time().Sub(c.autoSessionTicketKeys[0].created) >= ticketKeyRotation {
common.go#L1126: valid := make([]ticketKey, 0, len(c.autoSessionTicketKeys)+1)
common.go#L1128: for _, k := range c.autoSessionTicketKeys {
common.go#L1134: c.autoSessionTicketKeys = valid
common.go#L1136: return c.autoSessionTicketKeys
The pages are generated with Golds v0.8.4. (GOOS=linux GOARCH=amd64)